home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmBusy
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 675
- ClientLeft = 825
- ClientTop = 1575
- ClientWidth = 3270
- ControlBox = 0 'False
- Height = 1080
- Icon = "Busy.frx":0000
- Left = 765
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- MousePointer = 11 'Hourglass
- ScaleHeight = 675
- ScaleWidth = 3270
- ShowInTaskbar = 0 'False
- Top = 1230
- Width = 3390
- Begin VB.Label Label1
- AutoSize = -1 'True
- Caption = "Loading screen fonts..."
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 300
- Left = 240
- TabIndex = 0
- Top = 180
- Width = 2775
- End
- Attribute VB_Name = "frmBusy"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Screen.MousePointer = vbHourglass
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Screen.MousePointer = vbDefault
- End Sub
-